2021-02-08 10:39:42 +01:00
|
|
|
from setuptools import setup
|
|
|
|
import configparser
|
|
|
|
import os
|
|
|
|
|
2021-04-04 14:55:27 +02:00
|
|
|
|
2021-02-08 10:39:42 +01:00
|
|
|
requirements = []
|
|
|
|
f = open('requirements.txt', 'r')
|
|
|
|
while True:
|
|
|
|
l = f.readline()
|
|
|
|
if l == '':
|
|
|
|
break
|
|
|
|
requirements.append(l.rstrip())
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
setup(
|
2021-04-04 14:55:27 +02:00
|
|
|
install_requires=requirements,
|
2021-08-21 09:31:59 +02:00
|
|
|
extras_require={
|
|
|
|
'xdg': "pyxdg~=0.27",
|
2021-11-08 07:49:02 +01:00
|
|
|
},
|
|
|
|
license_files= ('LICENSE.txt',),
|
|
|
|
python_requires = '>=3.8',
|
|
|
|
include_package_data = True,
|
|
|
|
packages = [
|
|
|
|
'chainlib',
|
|
|
|
'chainlib.cli',
|
|
|
|
],
|
2021-02-08 10:39:42 +01:00
|
|
|
)
|