forked from raviolliii/dev-achievements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 911 Bytes
/
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
# setup.py
# --------
# Specifies installation config for building/pypi.
from setuptools import find_packages, setup
# ignore unit tests
excluded_packages = ['tests', 'tests.*']
# load in README as long description
with open('README.md', 'r') as file:
long_description = file.read()
setup(
name='dev_achievements',
version='1.0.3',
author='Ravi Patel',
author_email='[email protected]',
description='Earn Achievements while learning how to code',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/raviolliii/dev-achievements',
packages=find_packages(exclude=excluded_packages),
python_requires='>=3.5',
install_requires=[],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)