-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
61 lines (54 loc) · 1.44 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
from setuptools import find_packages, setup
with open('src/dotlock/__init__.py') as fp:
# defines __version__
exec(fp.read())
with open('README.rst') as fp:
README = fp.read()
setup(
name='dotlock',
version=__version__,
author='Alex Becker',
author_email='myself@alexcbecker.net',
url='https://github.com/alexbecker/dotlock',
description='Fast and accurate Python dependency management',
long_description=README,
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={
'dotlock': [
'dist_info/cache_schema.sql',
'package.skeleton.json',
'install.sh',
],
},
entry_points={
'console_scripts': [
'dotlock = dotlock.__main__:main'
],
},
install_requires=[
'aiohttp>=3.1',
'packaging',
'pip>=10.0',
'setuptools>=39.0',
'six',
'virtualenv',
],
extras_require={
'tests': [
'pytest',
'pytest-asyncio',
],
},
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords='packaging requirements dependencies',
)