-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.04 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
import os
import runpy
import setuptools
HERE = os.path.dirname(__file__)
VERSION_FILE = os.path.join(HERE, "packaway", "version.py")
VERSION = runpy.run_path(VERSION_FILE)["__version__"]
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="packaway",
license="MIT",
version=VERSION,
description="Static Checker to Enforce (Some) Encapsulation in Python.",
author="Kit Yan Choi",
packages=setuptools.find_packages(),
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/kitchoi/packaway",
entry_points={
"flake8.extension": [
'DEP = packaway.plugins.flake8.import_checker:ImportChecker',
],
},
install_requires=[],
extras_require={
"test": [
"flake8",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)