-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
84 lines (45 loc) · 1.96 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
from distutils.core import setup
from setuptools import find_packages
import os
# Pull project description (long) from project readme
current_directory = os.path.dirname(os.path.abspath(__file__))
# Linke to the requirements text file
requirementPath = current_directory + '/requirements.txt'
install_requires = []
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
install_requires = f.read().splitlines()
try:
with open(os.path.join(current_directory,'README.md'), encoding='utf-8') as f:
long_description = f.read()
except Exception:
long_description = ''
setup(
# Project name:
name='GRE Calculator',
# Packages to include in the distribution:
packages=find_packages('kivy'),
# Project version number:
version='1.0.0',
# List a license for the project, eg. MIT License
license='MIT License',
# Short description of your library:
description='Provides a free on-screen version of the GRE Quantitative Measure Calculator for use during exam preparation.',
# Long description of your library:
long_description=long_description,
long_description_content_type='text/markdown',
# Your name:
author='Asa LeHolland',
# Your email address:
author_email='[email protected]',
# Link to your github repository or website:
url='https://github.com/asa-leholland/GRE-calculator',
# Download Link from where the project can be downloaded from:
download_url='https://github.com/asa-leholland/GRE-calculator',
# List of keywords:
keywords=['Python', 'GRE', 'calculator', 'quantitative', 'measure', 'on-screen', 'computer', 'practice', 'free', 'download'],
# List project dependencies:
install_requires=install_requires,
# https://pypi.org/classifiers/
classifiers=['Environment :: Win32 (MS Windows)', 'Development Status :: 5 - Production/Stable', 'Intended Audience :: End Users/Desktop', 'License :: Free For Educational Use', 'Programming Language :: Python :: 3.7', 'Topic :: Education']
)