-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
49 lines (45 loc) · 1.43 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
from codecs import open
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), 'r') as infile:
long_description = infile.read()
about = {}
with open(os.path.join(here, 'basecampy3', '__version__.py'), 'r', encoding='utf-8') as infile:
exec(infile.read(), about)
setup(
name='basecampy3',
version=about['__version__'],
packages=find_packages(exclude=["tests"]),
install_requires=[
"python-dateutil",
"pytz",
"requests",
"six",
"urllib3<2.0.0",
"tzlocal<=2.1",
],
entry_points={
'console_scripts': [
'bc3 = basecampy3.bc3_cli:main',
],
},
url='/~https://github.com/phistrom/basecampy3',
license='MIT',
author='Phillip Stromberg',
author_email='phillip@strombergs.com',
description='Aims to be the easiest to use version of the Basecamp 3 API',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
zip_safe=False,
long_description=long_description,
long_description_content_type="text/markdown"
)