-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
37 lines (36 loc) · 1.41 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
from setuptools import setup
setup(
name="nixpkgs-pytools",
description="Tools for removing the tedious nature of creating nixpkgs derivations",
version="1.3.0",
packages=["nixpkgs_pytools"],
license="MIT",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
author="Christopher Ostrouchov",
author_email="[email protected]",
url="https://github.com/nix-community/nixpkgs-pytools/",
install_requires=["jinja2", "setuptools", "rope"],
tests_require=["pytest"],
entry_points={
"console_scripts": [
"python-package-init = nixpkgs_pytools.python_package_init:main",
"python-rewrite-imports = nixpkgs_pytools.import_rewrite:main"
]
},
classifiers=[
"Natural Language :: English",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Code Generators",
"Topic :: System :: Software Distribution",
],
)