mirror of
https://github.com/Shawn-Shan/fawkes.git
synced 2024-11-09 13:41:31 +05:30
e9f1a50653
Former-commit-id: 14c0173d9f573e7ccb275b3e366505057ac2c9b1 [formerly e359682d967212b4b3f27923fd659bbade7880e5] Former-commit-id: a44577686ff64da031231ea323c681185daa8b0d
120 lines
3.2 KiB
Python
120 lines
3.2 KiB
Python
import os
|
|
import re
|
|
import sys
|
|
|
|
from setuptools import setup, Command
|
|
|
|
__PATH__ = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
|
|
def read_version():
|
|
__PATH__ = os.path.abspath(os.path.dirname(__file__))
|
|
with open(os.path.join(__PATH__, 'fawkes/__init__.py')) as f:
|
|
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
|
|
f.read(), re.M)
|
|
if version_match:
|
|
return version_match.group(1)
|
|
raise RuntimeError("Unable to find __version__ string")
|
|
|
|
|
|
__version__ = read_version()
|
|
|
|
|
|
# brought from https://github.com/kennethreitz/setup.py
|
|
class DeployCommand(Command):
|
|
description = 'Build and deploy the package to PyPI.'
|
|
user_options = []
|
|
|
|
def initialize_options(self):
|
|
pass
|
|
|
|
def finalize_options(self):
|
|
pass
|
|
|
|
@staticmethod
|
|
def status(s):
|
|
print(s)
|
|
|
|
def run(self):
|
|
|
|
assert 'dev' not in __version__, (
|
|
"Only non-devel versions are allowed. "
|
|
"__version__ == {}".format(__version__))
|
|
|
|
with os.popen("git status --short") as fp:
|
|
git_status = fp.read().strip()
|
|
if git_status:
|
|
print("Error: git repository is not clean.\n")
|
|
os.system("git status --short")
|
|
sys.exit(1)
|
|
|
|
try:
|
|
from shutil import rmtree
|
|
self.status('Removing previous builds ...')
|
|
rmtree(os.path.join(__PATH__, 'dist'))
|
|
except OSError:
|
|
pass
|
|
|
|
self.status('Building Source and Wheel (universal) distribution ...')
|
|
os.system('{0} setup.py sdist'.format(sys.executable))
|
|
|
|
self.status('Uploading the package to PyPI via Twine ...')
|
|
ret = os.system('twine upload dist/*')
|
|
if ret != 0:
|
|
sys.exit(ret)
|
|
|
|
self.status('Creating git tags ...')
|
|
os.system('git tag v{0}'.format(__version__))
|
|
os.system('git tag --list')
|
|
sys.exit()
|
|
|
|
|
|
setup_requires = []
|
|
|
|
install_requires = [
|
|
'numpy==1.16.4',
|
|
# 'tensorflow-gpu>=1.13.1, <=1.14.0',
|
|
'tensorflow>=1.13.1, <=1.14.0',
|
|
'argparse',
|
|
'keras==2.2.5',
|
|
'scikit-image',
|
|
'pillow>=7.0.0',
|
|
'opencv-python>=4.2.0.34',
|
|
'sklearn',
|
|
]
|
|
|
|
setup(
|
|
name='fawkes',
|
|
version=__version__,
|
|
license='MIT',
|
|
description='An utility to protect user privacy',
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
url="https://github.com/Shawn-Shan/fawkes",
|
|
author='Shawn Shan',
|
|
author_email='shansixiong@cs.uchicago.edu',
|
|
keywords='fawkes privacy clearview',
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'License :: OSI Approved :: MIT License',
|
|
"Operating System :: OS Independent",
|
|
'Programming Language :: Python :: 3',
|
|
'Topic :: System :: Monitoring',
|
|
],
|
|
packages=['fawkes'],
|
|
install_requires=install_requires,
|
|
setup_requires=setup_requires,
|
|
entry_points={
|
|
'console_scripts': ['fawkes=fawkes:main'],
|
|
},
|
|
cmdclass={
|
|
'deploy': DeployCommand,
|
|
},
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
python_requires='>=3.5',
|
|
)
|