-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
41 lines (35 loc) · 1.24 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 python
from setuptools import setup, find_packages
def main():
with open('README.md', 'r') as f:
long_description = f.read()
with open('requirements.txt', 'r') as f:
requirements = [line for line in f]
setup(
name='tick-feedstocks',
version='0.0.0',
description='Automatically update conda-forge feedstocks by '
'ticking versions, updating hashes, and creating pull requests.',
long_descripton=long_description,
author='Peter M. Landwehr',
author_email='[email protected]',
url='https://github.com/pmlandwehr/cf_maintainer_bot',
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.5',
],
keywords='conda conda-forge',
packages=find_packages(),
install_requires=requirements,
entry_points={
'console_scripts': [
'tick-feedstocks=tick-feedstocks.core:main'
],
},
)
if __name__ == '__main__':
main()