-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
44 lines (42 loc) · 1.36 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
from setuptools import setup, find_packages
with open('README.rst') as f:
desc = f.read()
setup(
name = "pytoport",
version = "0.4.1",
packages = find_packages(),
author = "Brendan Molloy",
author_email = "[email protected]",
description = "Generate FreeBSD Makefiles from Python modules on PyPI",
license = "BSD-2-Clause",
keywords = "freebsd makefile pypi module",
url = "https://github.com/freebsd/pytoport/",
long_description=desc,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"
],
install_requires = [
'docutils>=0.12',
'spdx-lookup>=0.3.0',
'packaging',
'setuptools',
'FreeBSD-ports>=0.0.9',
],
entry_points = {
'console_scripts': [
'pytoport = pytoport:main'
]
}
)