FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-bitshares/setup.py at master · allrob23/python-bitshares · GitHub
allrob23
/
python-bitshares
Public
forked from
bitshares/python-bitshares
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-bitshares
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
18 lines (15 loc) · 534 Bytes
Breadcrumbs
python-bitshares
/
setup.py
Copy path
File metadata and controls
executable file
·
18 lines (15 loc) · 534 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from
setuptools
import
setup
__version__
=
"0.7.1"
setup
(
version
=
__version__
,
install_requires
=
open
(
"requirements.txt"
).
readlines
(),
tests_require
=
open
(
"requirements-test.txt"
).
readlines
(),
include_package_data
=
True
,
# needed for data from manifest
# Use git repo data (latest tag, current commit hash, etc) for building a
# version number according PEP 440. Conflicts with semantic-release
setuptools_git_versioning
=
{
"enabled"
:
False
,
},
)
Back
|
FazBrowse Home
|
New Git URL