-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·41 lines (36 loc) · 1.21 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
#!/usr/bin/env python3
import os
import sys
from setuptools import setup
def main():
"""The main entry point."""
with open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r') as f:
readme = f.read()
if sys.platform == "win32":
scripts = ['scripts/conda-press.bat']
else:
scripts = ['scripts/conda-press']
skw = dict(
name='conda-press',
description='Press conda packages into wheels',
long_description=readme,
long_description_content_type='text/markdown',
license='BSD',
version='0.0.6',
author='Anthony Scopatz',
maintainer='Anthony Scopatz',
author_email='[email protected]',
url='https://github.com/regro/conda-press',
platforms='Cross Platform',
classifiers=['Programming Language :: Python :: 3'],
packages=['conda_press'],
package_dir={'conda_press': 'conda_press'},
package_data={'conda_press': ['*.xsh']},
scripts=scripts,
install_requires=['xonsh', 'lazyasd', 'ruamel.yaml', 'tqdm', 'requests', 'dataclasses'],
python_requires=">=3.6",
zip_safe=False,
)
setup(**skw)
if __name__ == '__main__':
main()